C# |
---|
public Void AddText(String text) |
C# |
---|
// Defaults: IndentCharCount = 2, LineLimit = 80, WrapEnabled = false. var hb = new HTMLBuilder(); // Example Method: // Adds text without modification. hb.AddText("This is some appended text."); var result = hb.ToString(); // result: // This is some appended text. |